home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / NET / TCP11 / TCP11.INS < prev    next >
Encoding:
Text File  |  1995-09-08  |  1.3 KB  |  53 lines

  1. /* Copyright (c) Oracle Corporation 1992, 1993.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     tcp11.ins - Windows 95 V3 installation script for SQL*Net TCP/IP.
  5.  
  6.   DESCRIPTION
  7.     This script performs the installation tasks for the Windows 95 SQL*Net
  8.     TCP/IP product (client version).
  9.  
  10.   VERSION
  11.     1.1.6.6
  12.  
  13.   OWNER
  14.     Tony Rodgers
  15.  
  16.   MODIFIED    DD-MMM-YY Reason
  17.     trodgers  10-APR-92 Created.
  18.     Calvin    21-FEB-92 Modified for standalone install.
  19.     Eflores   26-JUL-94 Modified for 3.0.10 installer
  20.     LMurphy   08-SEP-95 Modified for Windows 95
  21. *****************************************************************************/
  22.  
  23. {
  24.  if (doit)
  25.   {
  26.     ins_ratchet = "1.1.0.0.0";
  27.  
  28.     execute("%installer_home%\win95.ins");
  29.  
  30.     install(w95rsf72);
  31.  
  32.     ui_product(product_label);
  33.  
  34.     permit_retry_operations = TRUE;
  35.  
  36.     ui_action(instantiate(net1_install_scripts));
  37.     copy(deinstl);
  38.  
  39.     permit_retry_operations = FALSE;
  40.  
  41.     ui_action(instantiate(net1_install_dlls));
  42.     copy(dll);
  43.     
  44.     ui_action(instantiate(net1_register_label));
  45.     register(current_product);
  46.  
  47.     if (member(selected_products,current_product))
  48.      reference(current_product);
  49.  
  50.     reference(w95rsf72, current_product);
  51.   }
  52. }
  53.